Obtaining
Information About Compressors and Decompressors
The following
example uses the ICGetInfo
ICINFO ICInfo;
ICGetInfo(hIC, &ICInfo, sizeof(ICInfo));
The following
example uses the ICGetDefaultKeyFrameRate
DWORD dwKeyFrameRate, dwQuality;
dwKeyFrameRate = ICGetDefaultKeyFrameRate(hIC);
dwQuality = ICGetDefaultQuality(hIC);
The following
example uses the ICQueryAbout
// If the compressor has an About dialog box,
display it.
if ( ICQueryAbout(hIC)) ICAbout(hIC, hwndApp);